100
How do I change the visual aspect for thumb parts in the scroll bars, using EBN


oDCOCX_Exontrol1:VisualAppearance:Add(1,"c:\exontrol\images\normal.ebn")
oDCOCX_Exontrol1:VisualAppearance:Add(2,"c:\exontrol\images\pushed.ebn")
oDCOCX_Exontrol1:VisualAppearance:Add(3,"c:\exontrol\images\hot.ebn")
oDCOCX_Exontrol1:[Background,exHSThumb] := 0x1000000
oDCOCX_Exontrol1:[Background,exHSThumbP] := 0x2000000
oDCOCX_Exontrol1:[Background,exHSThumbH] := 0x3000000
oDCOCX_Exontrol1:[Background,exVSThumb] := 0x1000000
oDCOCX_Exontrol1:[Background,exVSThumbP] := 0x2000000
oDCOCX_Exontrol1:[Background,exVSThumbH] := 0x3000000
oDCOCX_Exontrol1:ColumnAutoResize := false
oDCOCX_Exontrol1:[ColumnWidth,"Name"] := 256

99
How do I change the visual aspect only for the thumb in the scroll bar, using EBN


oDCOCX_Exontrol1:VisualAppearance:Add(1,"c:\exontrol\images\normal.ebn")
oDCOCX_Exontrol1:VisualAppearance:Add(2,"c:\exontrol\images\pushed.ebn")
oDCOCX_Exontrol1:VisualAppearance:Add(3,"c:\exontrol\images\hot.ebn")
oDCOCX_Exontrol1:[Background,exHSThumb] := 0x1000000
oDCOCX_Exontrol1:[Background,exHSThumbP] := 0x2000000
oDCOCX_Exontrol1:[Background,exHSThumbH] := 0x3000000
oDCOCX_Exontrol1:ColumnAutoResize := false
oDCOCX_Exontrol1:[ColumnWidth,"Name"] := 256

98
How to check whether the control hides the three-letter file-name extensions for certain files, reducing clutter in folder windows


oDCOCX_Exontrol1:[Option,exHideFileExtensionsForKnownFileTypes] := true
oDCOCX_Exontrol1:Refresh()

97
How can I change the date format in the Modified column


oDCOCX_Exontrol1:[Option,exModifiedDateFormat] := "yyyyy "
oDCOCX_Exontrol1:[Option,exModifiedTimeFormat] := "hh:mm"
oDCOCX_Exontrol1:Refresh()

96
How can I change the date format in the Modified column


oDCOCX_Exontrol1:[Option,exModifiedDateFormat] := "ddd, MMM dd yy"
oDCOCX_Exontrol1:Refresh()

95
How can I change the format of the caption that's shown in the Modified column, if ModifiedDaysAgo property is used


oDCOCX_Exontrol1:ModifiedDaysAgo := 356
oDCOCX_Exontrol1:[Option,exModifiedDaysAgo] := "vor %i Tagen"
oDCOCX_Exontrol1:Refresh()

94
How can I change the "today" caption that's shown in the Modified column


oDCOCX_Exontrol1:ModifiedDaysAgo := 356
oDCOCX_Exontrol1:[Option,exModifiedToday] := "__ new today __"
oDCOCX_Exontrol1:Refresh()

93
Is there any way to rename a column


oDCOCX_Exontrol1:[ColumnCaption,"Name"] := "__ new name __"

92
Is there any option to exclude folders that match a pattern


oDCOCX_Exontrol1:ExcludeFolderFilter := "W*"

91
Is there any option to include only folders that match a pattern


oDCOCX_Exontrol1:IncludeFolderFilter := "W*"

90
How can I include files when folders are expanded


oDCOCX_Exontrol1:ExpandFolders := true
oDCOCX_Exontrol1:IncludeFilesInFolder := true

89
How do I get the file or folder from the cursor
METHOD OCX_Exontrol1MouseMove(Button,Shift,X,Y) CLASS MainDialog
	// MouseMove event - Occurs when the user moves the mouse.
	OutputDebugString(String2Psz( oDCOCX_Exontrol1:[FileFromPoint,-1,-1] ))
RETURN NIL


OutputDebugString(String2Psz( oDCOCX_Exontrol1:[FileFromPoint,-1,-1] ))

88
How can I expand programatically a folder


oDCOCX_Exontrol1:ExpandFolders := true
oDCOCX_Exontrol1:Expand("WINNT")

87
Is there any option to remove the tooltip when the cursor hovers the column's drop down filter window


oDCOCX_Exontrol1:[ColumnFilterButton,"Name"] := true
oDCOCX_Exontrol1:[Description,exFilterBarFilterTitle] := ""
oDCOCX_Exontrol1:[Description,exFilterBarPatternFilterTitle] := ""
oDCOCX_Exontrol1:[Description,exFilterBarTooltip] := ""
oDCOCX_Exontrol1:[Description,exFilterBarPatternTooltip] := ""
oDCOCX_Exontrol1:[Description,exFilterBarFilterForTooltip] := ""

86
How can I change the "Filter For" caption in the column's drop down filter window


oDCOCX_Exontrol1:[ColumnFilterButton,"Name"] := true
oDCOCX_Exontrol1:[Description,exFilterBarFilterForCaption] := "new caption"

85
How do I change the "All" caption in the drop down filter window


oDCOCX_Exontrol1:[ColumnFilterButton,"Name"] := true
oDCOCX_Exontrol1:[Description,exFilterBarAll] := "new name for (All)"

84
How do I sort a column


oDCOCX_Exontrol1:Sort("Name",false)

83
How do I change the font in the filter bar


oDCOCX_Exontrol1:[ColumnFilterButton,"Name"] := true
oDCOCX_Exontrol1:[ColumnFilterType,"Name"] := exPattern
oDCOCX_Exontrol1:[ColumnFilter,"Name"] := "*.exe|*.com|*.bat"
oDCOCX_Exontrol1:ApplyFilter()
oDCOCX_Exontrol1:FilterBarFont:Name := "Verdana"

82
How do I change the visual appearanceof the filter bar


oDCOCX_Exontrol1:VisualAppearance:Add(1,"c:\exontrol\images\normal.ebn")
oDCOCX_Exontrol1:[ColumnFilterButton,"Name"] := true
oDCOCX_Exontrol1:[ColumnFilterType,"Name"] := exPattern
oDCOCX_Exontrol1:[ColumnFilter,"Name"] := "*.exe|*.com|*.bat"
oDCOCX_Exontrol1:ApplyFilter()
oDCOCX_Exontrol1:FilterBarBackColor := 0x1000000

81
How do I change the color in the filter bar


oDCOCX_Exontrol1:[ColumnFilterButton,"Name"] := true
oDCOCX_Exontrol1:[ColumnFilterType,"Name"] := exPattern
oDCOCX_Exontrol1:[ColumnFilter,"Name"] := "*.exe|*.com|*.bat"
oDCOCX_Exontrol1:ApplyFilter()
oDCOCX_Exontrol1:FilterBarBackColor := RGB(255,0,0)

80
How do I change the color in the filter bar


oDCOCX_Exontrol1:[ColumnFilterButton,"Name"] := true
oDCOCX_Exontrol1:[ColumnFilterType,"Name"] := exPattern
oDCOCX_Exontrol1:[ColumnFilter,"Name"] := "*.exe|*.com|*.bat"
oDCOCX_Exontrol1:ApplyFilter()
oDCOCX_Exontrol1:FilterBarForeColor := RGB(255,0,0)

79
How do I specify the height of the filter bar


oDCOCX_Exontrol1:[ColumnFilterButton,"Name"] := true
oDCOCX_Exontrol1:[ColumnFilterType,"Name"] := exPattern
oDCOCX_Exontrol1:[ColumnFilter,"Name"] := "*.exe|*.com|*.bat"
oDCOCX_Exontrol1:ApplyFilter()
oDCOCX_Exontrol1:FilterBarHeight := 32

78
How do I remove or clear the filter

oDCOCX_Exontrol1:[ColumnFilterButton,"Name"] := true
oDCOCX_Exontrol1:[ColumnFilterType,"Name"] := exPattern
oDCOCX_Exontrol1:[ColumnFilter,"Name"] := "*.exe|*.com|*.bat"
oDCOCX_Exontrol1:ApplyFilter()
oDCOCX_Exontrol1:ClearFilter()

77
How do I change the caption in the filter bar


oDCOCX_Exontrol1:[ColumnFilterButton,"Name"] := true
oDCOCX_Exontrol1:[ColumnFilterType,"Name"] := exPattern
oDCOCX_Exontrol1:[ColumnFilter,"Name"] := "*.exe|*.com|*.bat"
oDCOCX_Exontrol1:ApplyFilter()
oDCOCX_Exontrol1:FilterBarCaption := "new filter"

76
How do I filter a column


oDCOCX_Exontrol1:[ColumnFilterButton,"Name"] := true
oDCOCX_Exontrol1:[ColumnFilterType,"Name"] := exPattern
oDCOCX_Exontrol1:[ColumnFilter,"Name"] := "*.exe|*.com|*.bat"
oDCOCX_Exontrol1:ApplyFilter()

75
How can I enlarge the height of the drop down filter window


oDCOCX_Exontrol1:[ColumnFilterButton,"Name"] := true
oDCOCX_Exontrol1:FilterBarDropDownHeight := "-256"

74
How do I remove or clear my own filters


oDCOCX_Exontrol1:[ColumnFilterButton,"Name"] := true
oDCOCX_Exontrol1:AddColumnCustomFilter("Name","(Executable files)","*.exe|*.com|*.bat")
oDCOCX_Exontrol1:ClearColumnCustomFilters("Name")

73
How do I specify my own filters


oDCOCX_Exontrol1:[ColumnFilterButton,"Name"] := true
oDCOCX_Exontrol1:AddColumnCustomFilter("Name","(Executable files)","*.exe|*.com|*.bat")

72
How can I enlarge the width of the drop down filter window


oDCOCX_Exontrol1:[ColumnFilterButton,"Name"] := true
oDCOCX_Exontrol1:[FilterBarDropDownWidth,"Name"] := 2

71
How can I enlarge the width of the drop down filter window


oDCOCX_Exontrol1:[ColumnFilterButton,"Name"] := true
oDCOCX_Exontrol1:[FilterBarDropDownWidth,"Name"] := "-256"

70
How can I enable filtering the folders and files


oDCOCX_Exontrol1:[ColumnFilterButton,"Name"] := true

69
How do I display in the Modified column, the number of days since the file or folder was changed


oDCOCX_Exontrol1:ModifiedDaysAgo := 356

68
How do I stop programatically the searching

oDCOCX_Exontrol1:StopSearch()

67
How do I search or find files


oDCOCX_Exontrol1:Search := "A*.A*"

66
How can I expand or collapse a folder, when the user double clicks it


oDCOCX_Exontrol1:ExpandFolders := true
oDCOCX_Exontrol1:ExpandOnDblClk := true

65
How can I change the default icon being displayed for parent folders


oDCOCX_Exontrol1:LoadIcon(oDCOCX_Exontrol1:ExecuteTemplate("loadpicture(`c:\exontrol\images\week.ico`)"),1234)
oDCOCX_Exontrol1:IncludeParentIconKey := 1234

64
How can I show only folders


oDCOCX_Exontrol1:IncludeFiles := false

63
How can I show or hide the expand/collapse buttons


oDCOCX_Exontrol1:ExpandFolders := true
oDCOCX_Exontrol1:HasLines := true
oDCOCX_Exontrol1:HasLinesAtRoot := true
oDCOCX_Exontrol1:HasButtons := false

62
How can I show the lines at root


oDCOCX_Exontrol1:ExpandFolders := true
oDCOCX_Exontrol1:HasLines := true
oDCOCX_Exontrol1:HasLinesAtRoot := true

61
How can I show the lines between child and parents


oDCOCX_Exontrol1:ExpandFolders := true
oDCOCX_Exontrol1:HasLines := true

60
Is there any option to add an expand or collapse (+/-) buttons left to each folder


oDCOCX_Exontrol1:ExpandFolders := true

59
How do I show or hide the first item that shows when I browse new folders


oDCOCX_Exontrol1:IncludeParent := exNoIncludeParent

58
How do I enable or disable renaming the folders and files

oDCOCX_Exontrol1:AllowRename := true

57
How do I change the width of the columns


oDCOCX_Exontrol1:ColumnAutoResize := false
oDCOCX_Exontrol1:[ColumnWidth,"Name"] := 256

56
How do I change the width of the columns


oDCOCX_Exontrol1:[ColumnWidth,"Name"] := 256

55
How do I show or hide a column


oDCOCX_Exontrol1:[ColumnVisible,"Type"] := false

54
How can I get the path of the browsed folder

oDCOCX_Exontrol1:BrowseFolderPath := "C:\Temp"

53
The Change event is not fired. What can I do

oDCOCX_Exontrol1:ChangeNotification := true

52
How do I execute a command from the file's content menu (sample 1)


oDCOCX_Exontrol1:BeginUpdate()
oDCOCX_Exontrol1:ExploreFromHere := ""
oDCOCX_Exontrol1:ExecuteContextCommand("C:\",true,"Properties")
oDCOCX_Exontrol1:EndUpdate()

51
How do I change the width of the columns


oDCOCX_Exontrol1:ColumnAutoResize := false
oDCOCX_Exontrol1:[ColumnWidth,"Name"] := 256

50
How can I refresh automatically the control so it reflect the changes in the browsed folder

oDCOCX_Exontrol1:AutoUpdate := true

49
May I disable the control's content menu, that's displayed when the user does right click

oDCOCX_Exontrol1:AllowMenuContext := false

48
How do I refresh the control

oDCOCX_Exontrol1:Refresh()

47
How do I enable single or multiple selection


oDCOCX_Exontrol1:SingleSel := false

46
Can I display only all execpts the *.exe and *.com files using wild characters


oDCOCX_Exontrol1:ExcludeFilter := "*.exe *.com *.bat"

45
Can I display only *.exe and *.com files using wild characters


oDCOCX_Exontrol1:IncludeFilter := "*.exe *.com *.bat"

44
Can I change the folder being explored

oDCOCX_Exontrol1:ExploreFromHere := "c:\Program Files"

43
Can I display only files


oDCOCX_Exontrol1:IncludeFolders := false

42
How can I change the default icon being displayed for specified folders

local var_FileType as IFileType

oDCOCX_Exontrol1:LoadIcon(oDCOCX_Exontrol1:ExecuteTemplate("loadpicture(`c:\exontrol\images\week.ico`)"),1234)
var_FileType := oDCOCX_Exontrol1:FileTypes:Add("W*")
	var_FileType:Folder := true
	var_FileType:IconIndex := 1234
	var_FileType:Bold := true
	var_FileType:Apply()

41
How can I change the default icon being displayed for specified files

local var_FileType as IFileType

oDCOCX_Exontrol1:LoadIcon(oDCOCX_Exontrol1:ExecuteTemplate("loadpicture(`c:\exontrol\images\week.ico`)"),1234)
var_FileType := oDCOCX_Exontrol1:FileTypes:Add("*.bat *.com *.exe")
	var_FileType:IconIndex := 1234
	var_FileType:Apply()

40
How can I change the default icon being displayed for files

local var_FileType as IFileType

oDCOCX_Exontrol1:LoadIcon(oDCOCX_Exontrol1:ExecuteTemplate("loadpicture(`c:\exontrol\images\week.ico`)"),1234)
var_FileType := oDCOCX_Exontrol1:FileTypes:Add("*")
	var_FileType:IconIndex := 1234
	var_FileType:Apply()

39
How can I change the default icon being displayed for folders

local var_FileType as IFileType

oDCOCX_Exontrol1:LoadIcon(oDCOCX_Exontrol1:ExecuteTemplate("loadpicture(`c:\exontrol\images\week.ico`)"),1234)
var_FileType := oDCOCX_Exontrol1:FileTypes:Add("*")
	var_FileType:Folder := true
	var_FileType:IconIndex := 1234
	var_FileType:Apply()

38
Does your control support partial check feature, so a parent item gets checked when all its child items are checked


oDCOCX_Exontrol1:HasCheckBox := PartialCheckBox
oDCOCX_Exontrol1:ExpandFolders := true

37
Can I add a checkbox to each file or folder


oDCOCX_Exontrol1:HasCheckBox := CheckBox

36
How do I put a picture on the center of the control


// Generate Source for 'OLE Automation(stdole2.tlb)' server from Tools\Automation Server... with the PREFIX std
oDCOCX_Exontrol1:Picture := oDCOCX_Exontrol1:ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oDCOCX_Exontrol1:PictureDisplay := MiddleCenter

35
How do I resize/stretch a picture on the control's background


// Generate Source for 'OLE Automation(stdole2.tlb)' server from Tools\Automation Server... with the PREFIX std
oDCOCX_Exontrol1:Picture := oDCOCX_Exontrol1:ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oDCOCX_Exontrol1:PictureDisplay := Stretch

34
How do I put a picture on the control's center right bottom side


// Generate Source for 'OLE Automation(stdole2.tlb)' server from Tools\Automation Server... with the PREFIX std
oDCOCX_Exontrol1:Picture := oDCOCX_Exontrol1:ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oDCOCX_Exontrol1:PictureDisplay := LowerRight

33
How do I put a picture on the control's center left bottom side


// Generate Source for 'OLE Automation(stdole2.tlb)' server from Tools\Automation Server... with the PREFIX std
oDCOCX_Exontrol1:Picture := oDCOCX_Exontrol1:ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oDCOCX_Exontrol1:PictureDisplay := LowerLeft

32
How do I put a picture on the control's center top side


// Generate Source for 'OLE Automation(stdole2.tlb)' server from Tools\Automation Server... with the PREFIX std
oDCOCX_Exontrol1:Picture := oDCOCX_Exontrol1:ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oDCOCX_Exontrol1:PictureDisplay := UpperCenter

31
How do I put a picture on the control's right top corner


// Generate Source for 'OLE Automation(stdole2.tlb)' server from Tools\Automation Server... with the PREFIX std
oDCOCX_Exontrol1:Picture := oDCOCX_Exontrol1:ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oDCOCX_Exontrol1:PictureDisplay := UpperRight

30
How do I put a picture on the control's left top corner


// Generate Source for 'OLE Automation(stdole2.tlb)' server from Tools\Automation Server... with the PREFIX std
oDCOCX_Exontrol1:Picture := oDCOCX_Exontrol1:ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oDCOCX_Exontrol1:PictureDisplay := UpperLeft

29
How do I put a picture on the control's background


// Generate Source for 'OLE Automation(stdole2.tlb)' server from Tools\Automation Server... with the PREFIX std
oDCOCX_Exontrol1:Picture := oDCOCX_Exontrol1:ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")

28
How do I change the control's border, using your EBN files


oDCOCX_Exontrol1:VisualAppearance:Add(1,"c:\exontrol\images\hot.ebn")
oDCOCX_Exontrol1:Appearance := 0x1000000 | 
oDCOCX_Exontrol1:BackColor := RGB(255,255,255)

27
How do I remove the control's border


oDCOCX_Exontrol1:Appearance := None2

26
How can I change the foreground color of the control's header


oDCOCX_Exontrol1:ForeColorHeader := RGB(255,0,0)

25
How can I change the background color of the control's header


oDCOCX_Exontrol1:BackColorHeader := RGB(255,255,0)
oDCOCX_Exontrol1:HeaderAppearance := Flat

24
How can I change the visual appearance of the header, using EBN files


oDCOCX_Exontrol1:VisualAppearance:Add(1,"c:\exontrol\images\normal.ebn")
oDCOCX_Exontrol1:BackColorHeader := 0x1000000

23
How can I change the header's appearance


oDCOCX_Exontrol1:HeaderAppearance := Flat

22
How do I disable the control

oDCOCX_Exontrol1:Enabled := false

21
How do I change the visual appearance effect for the selected item, using EBN


oDCOCX_Exontrol1:VisualAppearance:Add(1,"c:\exontrol\images\normal.ebn")
oDCOCX_Exontrol1:SelBackColor := 0x1000000
oDCOCX_Exontrol1:SelForeColor := RGB(0,0,0)

20
How do I change the colors for the selected item


oDCOCX_Exontrol1:SelBackColor := RGB(0,0,0)

19
How can I change the control's font


oDCOCX_Exontrol1:Font:Name := "Tahoma"

18
How do I show or hide the control's header bar


oDCOCX_Exontrol1:HeaderVisible := false

17
How do I change the control's foreground color


oDCOCX_Exontrol1:ForeColor := RGB(120,120,120)

16
How do I change the control's background color


oDCOCX_Exontrol1:BackColor := RGB(200,200,200)

15
How do I prevent painting the control while multiple changes occur

oDCOCX_Exontrol1:BeginUpdate()
oDCOCX_Exontrol1:ForeColor := RGB(255,0,0)
oDCOCX_Exontrol1:BackColor := RGB(255,255,255)
oDCOCX_Exontrol1:EndUpdate()

14
How do I change the height of the items


oDCOCX_Exontrol1:DefaultItemHeight := 13
oDCOCX_Exontrol1:Refresh()

13
How do I enable resizing the columns at runtime


oDCOCX_Exontrol1:ColumnsAllowSizing := true

12
How do I call your x-script language


oDCOCX_Exontrol1:ExecuteTemplate("BackColor = RGB(255,0,0)")

11
How do I call your x-script language


oDCOCX_Exontrol1:Template := "BackColor = RGB(255,0,0)"

10
Can I change the order of the buttons in the scroll bar


oDCOCX_Exontrol1:[ScrollOrderParts,exHScroll] := "t,l,r"
oDCOCX_Exontrol1:[ScrollOrderParts,exVScroll] := "t,l,r"
oDCOCX_Exontrol1:ColumnAutoResize := false
oDCOCX_Exontrol1:[ColumnWidth,"Name"] := 256

9
The thumb size seems to be very small. Can I make it bigger


oDCOCX_Exontrol1:[ScrollThumbSize,exHScroll] := 64
oDCOCX_Exontrol1:ColumnAutoResize := false
oDCOCX_Exontrol1:[ColumnWidth,"Name"] := 256

8
How do I enlarge or change the size of the control's scrollbars


oDCOCX_Exontrol1:ScrollHeight := 18
oDCOCX_Exontrol1:ScrollWidth := 18
oDCOCX_Exontrol1:ScrollButtonWidth := 18
oDCOCX_Exontrol1:ScrollButtonHeight := 18
oDCOCX_Exontrol1:ColumnAutoResize := false
oDCOCX_Exontrol1:[ColumnWidth,"Name"] := 256

7
How do I assign a tooltip to a scrollbar


oDCOCX_Exontrol1:[ScrollToolTip,exHScroll] := "This is a tooltip being shown when you click and drag the thumb in the vetrical scroll bar"
oDCOCX_Exontrol1:[ScrollPartCaption,exHScroll,exThumbPart] := "This is just a text"
oDCOCX_Exontrol1:[ScrollFont,exVScroll]:Size := 12
oDCOCX_Exontrol1:ScrollWidth := 20
oDCOCX_Exontrol1:[ScrollThumbSize,exVScroll] := 148
oDCOCX_Exontrol1:ColumnAutoResize := false
oDCOCX_Exontrol1:[ColumnWidth,"Name"] := 256

6
I need to add a button in the scroll bar. Is this possible


oDCOCX_Exontrol1:[ScrollPartVisible,exHScroll,exLeftB1Part] := true
oDCOCX_Exontrol1:[ScrollPartCaption,exHScroll,exLeftB1Part] := "1"
oDCOCX_Exontrol1:ColumnAutoResize := false
oDCOCX_Exontrol1:[ColumnWidth,"Name"] := 256

5
Can I display an additional buttons in the scroll bar


oDCOCX_Exontrol1:[ScrollPartVisible,exHScroll,exLeftB1Part] := true
oDCOCX_Exontrol1:[ScrollPartVisible,exHScroll,exLeftB2Part] := true
oDCOCX_Exontrol1:[ScrollPartVisible,exHScroll,exRightB6Part] := true
oDCOCX_Exontrol1:[ScrollPartVisible,exHScroll,exRightB5Part] := true
oDCOCX_Exontrol1:ColumnAutoResize := false
oDCOCX_Exontrol1:[ColumnWidth,"Name"] := 256

4
Is there any option to highligth the column from the cursor - point

oDCOCX_Exontrol1:[Background,exCursorHoverColumn] := RGB(255,255,255)

3
Is there any option to highligth the column from the cursor - point

oDCOCX_Exontrol1:VisualAppearance:Add(1,"c:\exontrol\images\normal.ebn")
oDCOCX_Exontrol1:[Background,exCursorHoverColumn] := 0x1000000

2
How do I change the visual aspect of the close button in the filter bar, using EBN


oDCOCX_Exontrol1:VisualAppearance:Add(1,"c:\exontrol\images\normal.ebn")
oDCOCX_Exontrol1:[Background,exFooterFilterBarButton] := 0x1000000
oDCOCX_Exontrol1:[ColumnFilterButton,"Name"] := true
oDCOCX_Exontrol1:[ColumnFilterType,"Name"] := exPattern
oDCOCX_Exontrol1:[ColumnFilter,"Name"] := "*.exe"
oDCOCX_Exontrol1:ApplyFilter()

1
How do I change the visual aspect of the drop down filter button, using EBN


oDCOCX_Exontrol1:VisualAppearance:Add(1,"c:\exontrol\images\normal.ebn")
oDCOCX_Exontrol1:[Background,exHeaderFilterBarButton] := 0x1000000
oDCOCX_Exontrol1:[ColumnFilterButton,"Name"] := true